﻿*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.banner-pos{
    width: 100%;
    position: relative;
}

.img-bg-container{
    width: 100%;
    height: 400px;
    background-image: url("/Pages/es/Content section/Centro-ayuda/APP-AZUL/imagenes/Banner-APPAZULAndroid.webp");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 40px;
}

.bg-gradient{
    width: 100%;
    height: 500px;
    background: rgb(17,139,217);
    background: linear-gradient(90deg, rgba(17,139,217,1) 0%, rgba(29,105,183,1) 42%, rgba(44,59,137,1) 100%);
    position: relative;
}

.bg-gradient .cuadritos-pc{
    position: absolute;
    top: -70%;

    width: 100%;
    opacity: .5;
}

.bg-gradient .cuadritos-mobile{
    display: none;
}

/* Content Info */

.info{
    width: 90%;
    margin: auto;
    padding: 40px;
    margin-top: 20px;
}

.info h1{
    color: #fff !important;
    
}

.info p{
    color: #fff !important;
    line-height: 1 !important;
    margin-top: 20px !important; 
}

.content-list-products{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);

    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
    width: 90%;
    max-width: 1400px;
    
    
    z-index: 3;
}

.content-list-products h2{
    text-align: center;
    color: #006EB8 !important; 
    margin-bottom: 30px;
}




/* Products */
/* 
.list-products .overlay{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;

    transition: .4s ease-in-out;
} */

/* .list-products .right{
    background: rgb(255,255,255);
    background: linear-gradient(90deg, rgba(2,255,255,0) 77%, rgba(255,255,255,1) 100%);
    opacity: 1;
}

.list-products .left{
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 30%);
    opacity: 1;
} */

.list-products{
    max-width: 1100px;
    width: 100%;
    position: relative;
    margin: 20px auto 0px auto
}

.list-products i{
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    position: absolute;
    text-align: center;
    transform: translateY(-50%);
    transition: transform .1s linear; 
    z-index: 3;
    font-size: 40px;  
    color: #0091DF;
}

.list-products i:active{
    transform: translateY(-50%) scale(0.85);
}

.list-products #prev{
    left: -17px;
    display: none;
}

.list-products #next{
    right: -17px;
    display: none ;
}



.list-products .carrusel{
    width: 100%;
    padding: 10px;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100%/5) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.carrusel.no-transition{
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carrusel.dragging{
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carrusel.dragging .card{
    cursor: grab;
    user-select: none;
}

.carrusel :where(.card){
    display: flex;
    justify-content: center;
    align-items: center;
}

.card{
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 0 15px rgba(44,59,137,0.1);
    padding: 20px 25px;
    transition: 0.2s ease-in;
    

    width: 190px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: center; 
    scroll-snap-align: center;

    cursor: pointer;
}

.descipcion ul li{
    padding-left: 41px;
    margin-bottom: 12px;
    font-family: VAGRoundedLtProBold !important;
    font-weight: 800;
    line-height: 1.1;
}

.card.active-card{
    background-color: #E9F4FA;
    border: 1px solid #F8FBFC;
}

.card .icon{
    width: 130px;
}

.content-list-products .list-products .carrusel .card-li .card .h5-active{
    color: #0091DF !important;
}




@media(max-width:768px){

    .oculto-xs{
        display: none;
    }

    .img-bg-container{
        background-image: url("/Pages/es/Content section/Centro-ayuda/APP-AZUL/imagenes/Azul-App-Mobile.webp");
        background-position: center;
    }

    .info{
        width: 100%;
        margin: auto;
        padding: 30px;
        margin-top: 10px;
    }

   

    .info h1{
        font-size: 27px !important;
    }
    

    .content-list-products{
        position: absolute;
        top: 30%;
        width: 90%;
        margin: auto;
        
        z-index: 15;
    }

    .content-list-products h2{
        line-height: 1.1;
    }

    /* .overlay{
        display: none;
    } */

    .list-products #next{
        right: -17px;
        display: block;
    }

    .bg-gradient .cuadritos-pc{
        display: none
    }

    .bg-gradient .cuadritos-mobile{
        display: block;
        position: absolute;
        top: -65%;

        width: auto;
        opacity: .5;
    }

    .img-bg-container{
        background-position: center;
    }



    .list-products .carrusel{
        grid-auto-columns: 50% !important;
        /* justify-items: center; */
    }


}

@media (max-width: 480px) {
    .card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 0 15px rgba(44, 59, 137, 0.1);
        padding: 20px 25px;
        transition: 0.2s ease-in;
        width: 140px;
        height: 190px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
        scroll-snap-align: center;
        cursor: pointer;
    }
}

@media (max-width: 390px) {
    .card {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 0 15px rgba(44, 59, 137, 0.1);
        padding: 20px 25px;
        transition: 0.2s ease-in;
        width: 125px;
        height: 170px;
        display: flex
;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        text-align: center;
        scroll-snap-align: center;
        cursor: pointer;
    }
}


@media (min-width: 1026px) {
    .list-products i {
        display: none ; /* Oculta las flechas en desktop */
    }
}

@media ((max-width:1025px) and (min-width: 769px)){
    .img-bg-container{
        background-image: url("/Pages/es/Content section/Centro-ayuda/APP-AZUL/imagenes/Azul-App-Tablet.webp");
        background-position: 50%;
    }


    .banner h1{
        line-height: 1 !important;
    }

    .list-products .carrusel{
        grid-auto-columns: calc((100% / 3) - 9px );
    }

    .item{
        width: 100%;
    }

     .list-products i#next {
        display: block; /* Muestra las flechas en tabletas y móviles */
    }
}


